home *** CD-ROM | disk | FTP | other *** search
/ Super CD / Super CD.iso / kids / shaps / hdinstal.bat < prev    next >
DOS Batch File  |  1988-07-27  |  841b  |  29 lines

  1. Echo Off
  2. Echo (C)Copyright First Byte Corporation  1988
  3. Echo - - - - -     
  4. if not .%1 == . goto HASARG
  5. Echo You must supply the Hard Disk drive number as an argument:
  6. Echo   HDINSTALL C:
  7. goto  ABORT
  8. :HASARG
  9. if exist SPEECH.EXE goto HASSP
  10. Echo You must first do a regular INSTALL before installing on your Hard Disk.
  11. goto ABORT
  12. :HASSP
  13. Echo We are about to copy all files to the current directory on your Hard
  14. Echo Disk %1 ....
  15. Echo - - - - -
  16. Echo (Hit Ctrl-C to stop installation)
  17. Echo - - - - -
  18. pause
  19. Echo Copying all Disk 1 files ..
  20. copy a:*.* %1
  21. if exist CGAA.FNT goto DONE
  22. Echo After the next DOS prompt, insert your Disk 2 ..
  23. Echo Copying all Disk 2 files ..
  24. copy b:*.* %1
  25. :DONE
  26. Echo Done installing onto your Hard Disk.  You may run the product from the
  27. Echo Hard Disk by typing RUN and then ENTER.
  28. :ABORT
  29.